From 326501326837c8f203ebe89d405c205fb03e88ee Mon Sep 17 00:00:00 2001 From: =?utf8?q?Timm=20B=C3=A4der?= Date: Thu, 18 Jan 2018 21:54:03 +0100 Subject: [PATCH] textview: Remove some stray debugging output Leftover from 7046463b880c79b227594a2b35a6c625119d286e --- gtk/gtktextview.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/gtk/gtktextview.c b/gtk/gtktextview.c index f9da88784c..9679c65686 100644 --- a/gtk/gtktextview.c +++ b/gtk/gtktextview.c @@ -4741,8 +4741,6 @@ gtk_text_view_obscure_mouse_cursor (GtkTextView *text_view) if (text_view->priv->mouse_cursor_obscured) return; -g_print ("obscuring mouse cursor\n"); - gtk_widget_set_cursor_from_name (GTK_WIDGET (text_view), "none"); text_view->priv->mouse_cursor_obscured = TRUE; @@ -4753,7 +4751,6 @@ gtk_text_view_unobscure_mouse_cursor (GtkTextView *text_view) { if (text_view->priv->mouse_cursor_obscured) { -g_print ("unobscuring mouse cursor\n"); gtk_widget_set_cursor_from_name (GTK_WIDGET (text_view), "text"); text_view->priv->mouse_cursor_obscured = FALSE; } -- 2.30.2